class LL_NODE{T}
****
Private to LLIST{T} A node in a linked list which can hold data of type T. Implementation: Holds a pointer to the next element and a pointer to the data


Flattened version is here



Public


Readable Attributes
attr data: T;
attr next: SAME;

Writable Attributes
attr data: T;
attr next: SAME;

Features
create(t:T,n:SAME): SAME
is_eq(l:SAME): BOOL

The Sather Home Page